home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia2.dir / 00904_Script_14NConditional Checker < prev    next >
Text File  |  1995-05-21  |  749b  |  31 lines

  1. on exitFrame
  2.   global g25A, gmoney, gIntegrity, TV1, calls, Fug, sigis, g15A
  3.   Unloadcast
  4.   
  5.   if g25A = "c" then 
  6.     set TV1 = "c"
  7.   end if
  8.   if g15A = "c" then 
  9.     set sigis = "c"
  10.   end if
  11.   if g15A = "x" then 
  12.     set sigis = "c"
  13.   end if
  14.   
  15.   if gIntegrity < -37 and gMoney < 80999 then 
  16.     set calls = "LILM" -- Lo int./Lo $
  17.     set Fug = "LILM"
  18.   end if
  19.   if gIntegrity < -37 and gMoney >= 81000 then 
  20.     set calls = "LIHM" -- Lo int./HI $ 
  21.     set Fug = "LIHM"
  22.   end if
  23.   if gIntegrity >= -36 and gMoney < 80999 then 
  24.     set calls = "HILM" -- HI int./Lo $
  25.     set Fug = "HILM"
  26.   end if
  27.   if gIntegrity >= -36 and gMoney >= 81000 then 
  28.     set calls = "HIHM" -- Lo int./Lo $
  29.     set Fug = "HIHM"
  30.   end if
  31. end